home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / fl / video / INCManager.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  1.1 KB  |  48 lines

  1. package fl.video
  2. {
  3.    import flash.net.NetConnection;
  4.    
  5.    public interface INCManager
  6.    {
  7.        
  8.       
  9.       function set timeout(param1:uint) : void;
  10.       
  11.       function get streamLength() : Number;
  12.       
  13.       function get timeout() : uint;
  14.       
  15.       function connectToURL(param1:String) : Boolean;
  16.       
  17.       function get streamName() : String;
  18.       
  19.       function get bitrate() : Number;
  20.       
  21.       function get streamHeight() : int;
  22.       
  23.       function helperDone(param1:Object, param2:Boolean) : void;
  24.       
  25.       function getProperty(param1:String) : *;
  26.       
  27.       function get streamWidth() : int;
  28.       
  29.       function connectAgain() : Boolean;
  30.       
  31.       function reconnect() : void;
  32.       
  33.       function set videoPlayer(param1:VideoPlayer) : void;
  34.       
  35.       function setProperty(param1:String, param2:*) : void;
  36.       
  37.       function set bitrate(param1:Number) : void;
  38.       
  39.       function get netConnection() : NetConnection;
  40.       
  41.       function get videoPlayer() : VideoPlayer;
  42.       
  43.       function get isRTMP() : Boolean;
  44.       
  45.       function close() : void;
  46.    }
  47. }
  48.